#imagePreviewModal.preview-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#imagePreviewModal.preview-modal.hidden {
  display: none;
}

#imagePreviewModal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

#imagePreviewModal .modal-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 80%;
  max-height: 80%;
  overflow: hidden;
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1001;
  width: fit-content;
}

#imagePreviewModal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}

#imagePreviewModal .preview-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#imagePreviewModal #previewImage {
  max-width: 70vw;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 8px;
  aspect-ratio: 1 / 1.25;
}